 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            min-height: 100vh;
            background: radial-gradient(circle at 10% 30%, #f0f5fa, #d9e2ec);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .generator-card {
            max-width: 1100px;
            width: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 3rem;
            box-shadow: 0 25px 50px -12px rgba(0, 20, 30, 0.4), inset 0 1px 2px rgba(255,255,255,0.8);
            border: 1px solid rgba(255,255,255,0.6);
            padding: 2.2rem 2.5rem;
        }

        h1 {
            font-size: 2.6rem;
            font-weight: 700;
            background: linear-gradient(145deg, #0c344b, #1c5a6a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.4rem;
        }

        .badge {
            background: #1b4552;
            color: #b9f3ff;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 0.3rem 1.4rem;
            border-radius: 40px;
            border: 1px solid #479fb2;
            letter-spacing: normal;
        }

        .sub {
            color: #1d3d4a;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            border-left: 5px solid #2f98b3;
            padding-left: 1.3rem;
            background: #eaf3f8b3;
            border-radius: 0 20px 20px 0;
            width: fit-content;
            backdrop-filter: blur(4px);
        }

        .input-panel {
            background: #ffffffd9;
            border-radius: 2.5rem;
            padding: 2rem 2.2rem;
            box-shadow: inset 0 1px 4px #0000000d, 0 8px 18px #0000001a;
            margin-bottom: 2.5rem;
            border: 1px solid white;
        }

        .keyword-area {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            gap: 1.5rem;
        }

        .field {
            flex: 2 1 280px;
        }

        .field label {
            font-weight: 600;
            color: #144a57;
            display: block;
            margin-bottom: 0.4rem;
            font-size: 1rem;
        }

        .field input {
            width: 100%;
            padding: 0.9rem 1.5rem;
            border: none;
            background: white;
            border-radius: 50px;
            font-size: 1.1rem;
            box-shadow: 0 2px 8px rgba(0,30,30,0.1), inset 0 1px 3px #cbd5e1;
            transition: 0.2s;
            border: 2px solid transparent;
        }

        .field input:focus {
            outline: none;
            border-color: #2f98b3;
            box-shadow: 0 4px 14px #2f98b340;
        }

        .count-control {
            flex: 1 1 180px;
        }

        .count-control label {
            font-weight: 600;
            color: #144a57;
            display: flex;
            justify-content: space-between;
        }

        .count-control input {
            width: 100%;
            margin-top: 0.3rem;
        }

        .generate-btn {
            background: #1d4e5c;
            border: none;
            color: white;
            font-weight: 700;
            padding: 1rem 2.8rem;
            border-radius: 60px;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            box-shadow: 0 8px 18px #1d4e5c70;
            transition: 0.2s;
            border: 1px solid #86cfdf;
            flex: 1 0 auto;
            justify-content: center;
        }

        .generate-btn:hover {
            background: #0c3944;
            transform: scale(1.02) translateY(-2px);
        }

        .results-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 1.5rem 0 1rem 0;
        }

        .results-header h2 {
            color: #0a3842;
            font-weight: 600;
            font-size: 1.5rem;
        }

        .download-btn {
            background: #0c3340;
            color: #bef0fd;
            border: 2px solid #469fb8;
            padding: 0.7rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: 0.2s;
            box-shadow: 0 4px 12px #00000030;
        }

        .download-btn:disabled {
            opacity: 0.4;
            pointer-events: none;
            filter: grayscale(0.6);
        }

        .download-btn:hover:not(:disabled) {
            background: #164c5e;
            color: white;
            border-color: #a3e2f0;
        }

        .names-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.2rem;
            margin-top: 1.5rem;
            max-height: 420px;
            overflow-y: auto;
            padding: 0.3rem 0.3rem 0.8rem 0.3rem;
        }

        .name-card {
            background: white;
            backdrop-filter: blur(8px);
            border-radius: 1.8rem;
            padding: 1.4rem 1.4rem;
            box-shadow: 0 6px 14px #0000001a;
            border: 1px solid #e0f0f5;
            transition: 0.1s ease;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .business-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0a2f3c;
            letter-spacing: -0.01em;
            line-height: 1.3;
        }

        .property-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem 0.7rem;
            font-size: 0.85rem;
            color: #1d5a6b;
            align-items: center;
        }

        .property-tags span {
            background: #e2f0f5;
            padding: 0.3rem 1rem;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            border: 1px solid #addae8;
        }

        .domain-tag {
            background: #d9ecf2;
            font-family: 'Courier New', monospace;
            font-weight: 600;
        }

        .status-badge {
            background: #154552;
            color: #c5f0ff;
            border-radius: 20px;
            padding: 0.2rem 0.9rem;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status-badge.avail {
            background: #145c40;
            color: #d2ffd2;
        }

        .footer-note {
            margin-top: 2rem;
            text-align: center;
            color: #1e5b6b;
            background: #e5f2f8b3;
            padding: 0.7rem;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid white;
        }

        .footer-note code {
            background: #0d3d49;
            color: #b2f0ff;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
        }

        input[type=range] {
            height: 7px;
            background: #cbd5e1;
            border-radius: 10px;
            -webkit-appearance: none;
        }

        input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px;
            height: 20px;
            background: #1d5f70;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 8px black;
            cursor: pointer;
        }

        #countValue {
            font-weight: 700;
            color: #0a4d5e;
        }